#news {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
#news li {
	box-shadow: inset 0px -1px 4px rgb(0 0 0 / 25%);
	background-color: #F8F7F4;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
#news li span {
	display: block;
	font-family: RotondaC;
}
#news img {
	object-fit: cover;
}
#news .name {
	color: #95723D;
	font-weight: bold;
	font-size: 2.4rem;
	flex-grow: 1;
}
#news .date {
	color: #5B5B5B;
	font-size: 2rem;
	text-align: right;
}
#news .news-bottom {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

@media (min-width: 1200px) {
	#news img {
		width: 350px;
		height: 236px;
	}
	#news li span {
		margin: 10px;
	}
	#news {
		grid-gap: 25px;
		margin-bottom: 85px;
	}
	#news li {
		border-radius: 10px;
	}
}
@media (min-width: 992px) {
	
}
@media (min-width: 768px) {
	
}
@media (min-width: 576px) {
	
}
@media (max-width: 575px) {
	
}